home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / sspell14.zip / ROOT.H < prev    next >
C/C++ Source or Header  |  1992-07-06  |  313b  |  19 lines

  1. /* root.h */
  2.  
  3. typedef struct wordlststruct
  4. {
  5.    char *word;
  6.    char *prefix;
  7.    char *suffix;
  8.    struct wordlststruct *next;
  9.    } WORDLST;
  10.  
  11. /* void root(char *in, WORDLST **outlst) */
  12. void root();
  13.  
  14. /* void destroy(WORDLST *a) */
  15. void destroy();
  16.  
  17. /* void initroot(char *file) */
  18. void initroot();
  19.